curl --request POST \
--url https://api.topsort.com/public/v1/invitation-service/invitations \
--header 'Content-Type: application/json' \
--data '{
"invites": [
{
"vendorEmail": "jsmith@example.com",
"vendorId": "<string>"
}
]
}'
"<any>"
Invites a collection of Vendors to the Topsort platform.
The request payload should contain an array of pairs of vendor’s ID, and email.
curl --request POST \
--url https://api.topsort.com/public/v1/invitation-service/invitations \
--header 'Content-Type: application/json' \
--data '{
"invites": [
{
"vendorEmail": "jsmith@example.com",
"vendorId": "<string>"
}
]
}'
"<any>"
Successful Response
The response is of type any
.